/*
  Chopdiwala.com ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Zippy theme preview
  ====================================
  Brand vars derived from the logo (deep-indigo wordmark + saffron deals accent).
  Everything else matches native Zippy CSS values exactly (see themes/zippy.md).
  Customer constraints: single-row collection sliders only; footer mirrors chopdiwala.com.
*/

:root {
  /* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Brand (Chopdiwala) ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
  --brand-primary: #3a33a6;
  /* deep indigo ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â wordmark */
  --brand-primary-dark: #2a2580;
  --brand-accent: #f59e0b;
  /* saffron / amber ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â deals + CTA */
  --brand-accent-dark: #d97f06;

  /* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Neutrals ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
  --navy: #0e1430;
  /* footer ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â near-navy from wordmark */
  --white: #ffffff;
  --off-white: #f5f7fa;
  --border: #e0e0e0;
  --text-dark: #1a1a2e;
  --text-muted: #6b7280;

  /* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Layout ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
  --page-px: 4rem;
  --radius: 8px;
  --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
}

body {
  font-family: "Outfit", system-ui, sans-serif;
  color: var(--text-dark);
  background: var(--white);
}

.page-container {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: var(--page-px);
  padding-right: var(--page-px);
}

/* ÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚Â ANNOUNCEMENT BAR ÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚Â */
.announcement-bar {
  background: var(--brand-primary);
  padding: 8px 0;
  position: relative;
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.announcement-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.announcement-items strong {
  color: #ffd740;
  font-weight: 700;
}

.ann-msg {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.ann-msg svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  opacity: 0.9;
}

.ann-msg:not(:first-child) {
  margin-left: 0.85rem;
  padding-left: 0.85rem;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.ann-close {
  position: absolute;
  right: var(--page-px);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  font-size: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
}

.ann-close:hover {
  color: white;
}

.desktop-header-menu {
  display: flex;
  align-items: center;
  border-top: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
  background: #fafafa;
}

.desktop-header-menu::-webkit-scrollbar {
  display: none;
}

.nav-link {
  padding: 10px 18px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-dark);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}

.nav-link:hover {
  color: var(--brand-primary);
  border-bottom-color: var(--brand-primary);
  background: white;
}

.nav-link.active {
  color: var(--brand-primary);
  border-bottom-color: var(--brand-primary);
  font-weight: 600;
}

/* ÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚Â HERO (indigo gradient) ÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚Â */
.hero-section {
  background: linear-gradient(135deg, #221c6e 0%, #3a33a6 52%, #5b4fc4 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: radial-gradient(circle, white 1px, transparent 1px);
  background-size: 28px 28px;
}

.hero-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 48px var(--page-px) 28px;
  display: flex;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
  min-width: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-accent);
  color: #3a2400;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 18px;
}

.hero-title {
  font-size: 3.1rem;
  font-weight: 800;
  color: white;
  line-height: 1.12;
  margin-bottom: 14px;
}

.hero-accent {
  color: #ffd740;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 20px;
  line-height: 1.6;
}

.hero-sub strong {
  color: #ffd740;
  font-weight: 700;
}

.hero-pills {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.hero-pill {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 5px 13px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}

.btn-primary {
  background: var(--brand-accent);
  color: #3a2400;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
  display: inline-block;
  font-family: inherit;
}

.btn-primary:hover {
  background: var(--brand-accent-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.btn-ghost:hover {
  color: white;
}

.hero-products {
  flex-shrink: 0;
  width: 360px;
}

.hero-prod-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero-prod-item {
  background: white;
  border-radius: 10px;
  padding: 10px;
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

.hero-prod-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-prod-badge {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: var(--brand-accent);
  color: #3a2400;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 3px;
}

/* ÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚Â SECTION HEADER ÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚Â */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 10px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 3px;
  background: var(--brand-accent);
  border-radius: 2px;
}

.view-all-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-primary);
}

.view-all-link:hover {
  text-decoration: underline;
}

/* ÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚Â CATEGORIES ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â typographic "Shop by Exam" tiles ÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚Â
  /* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â CATEGORIES Ã¢â‚¬â€ Typographic "Shop by Exam" Tiles Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.cust-cat-section.page-container {
  padding: 2rem var(--page-px) 3.5rem;
}

.cust-cat-section .section-header .section-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 14px;
}

.cat-tile {
  aspect-ratio: 1;
  min-width: 0;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 8px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  background: #fff;
}

.cat-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.cat-ico {
  line-height: 1;
  color: var(--brand-primary);
}

.cat-ico svg {
  width: 30px;
  height: 30px;
  display: block;
}

.cat-tile.cat-tile-all .cat-ico {
  color: #fff;
}

.cat-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  word-break: break-word;
}

.cat-count {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* View All Tile */
.cat-tile.cat-tile-all {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
}

.cat-tile.cat-tile-all .cat-name,
.cat-tile.cat-tile-all .cat-count {
  color: #fff;
}

.cat-tile.cat-tile-all .cat-count {
  color: rgba(255, 255, 255, 0.7);
}

/* Tablet */
@media (max-width: 1024px) {
  .cat-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .header-top {
    justify-content: flex-start !important;
    align-items: center !important;
  }
  .cust-cat-section.page-container {
    padding: 1.5rem 16px 2.5rem;
  }

  .cat-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .cat-tile {
    padding: 8px 6px;
    border-radius: 12px;
  }

  .cat-ico svg {
    width: 24px;
    height: 24px;
  }

  .cat-name {
    font-size: 0.68rem;
  }

  .cat-count {
    font-size: 0.52rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .cat-tile {
    padding: 10px 8px;
  }

  .cat-name {
    font-size: 0.72rem;
  }

  .cat-count {
    font-size: 0.55rem;
  }
}

/* ÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚Â SHOP BY PUBLISHER ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â primary quick-filter strip ÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚Â */
.pub-strip.page-container {
  padding: 2rem var(--page-px) 1.75rem;
}

/* 2 rows of chips that scroll horizontally together */
.pub-scroller {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(2, auto);
  grid-auto-columns: max-content;
  justify-items: start;
  gap: 10px 10px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
  scroll-snap-type: x proximity;
}

.pub-scroller::-webkit-scrollbar {
  display: none;
}

.pub-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  scroll-snap-align: start;
  transition:
    border-color 0.2s,
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
}

.pub-chip:hover {
  border-color: var(--brand-primary);
  background: #f3f2fc;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(58, 51, 166, 0.12);
}

.pub-av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 800;
  color: #fff;
  flex: 0 0 auto;
}

.pub-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.pub-name {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
}

.pub-count {
  font-size: 0.66rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

/* rotating avatar colours (white text stays legible on all) */
.pub-chip:nth-child(8n + 1) .pub-av {
  background: #3a33a6;
}

.pub-chip:nth-child(8n + 2) .pub-av {
  background: #d97f06;
}

.pub-chip:nth-child(8n + 3) .pub-av {
  background: #6d5ce7;
}

.pub-chip:nth-child(8n + 4) .pub-av {
  background: #0e9f9f;
}

.pub-chip:nth-child(8n + 5) .pub-av {
  background: #db4b7e;
}

.pub-chip:nth-child(8n + 6) .pub-av {
  background: #2e9e5b;
}

.pub-chip:nth-child(8n + 7) .pub-av {
  background: #2563eb;
}

.pub-chip:nth-child(8n + 8) .pub-av {
  background: #586079;
}

/* "All Publishers" chip */
.pub-chip.pub-chip-all {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
}

.pub-chip.pub-chip-all .pub-name,
.pub-chip.pub-chip-all .pub-count {
  color: #fff;
}

.pub-chip.pub-chip-all .pub-count {
  color: rgba(255, 255, 255, 0.75);
}

.pub-chip.pub-chip-all .pub-av {
  background: rgba(255, 255, 255, 0.18);
}

.pub-chip.pub-chip-all:hover {
  background: var(--brand-primary-dark);
}

/* ÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚Â PRODUCT CARD (native Zippy values) ÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚Â */
.product-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-width: 0;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}

.product-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.product-card-tag-item {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  background: #dbeafe;
  color: #1e40af;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 6px;
}

.product-card-wishlist-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  background: white;
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  transition: all 0.2s;
}

.product-card-wishlist-btn:hover {
  border-color: var(--brand-accent);
  color: var(--brand-accent);
}

.product-card-link {
  display: block;
}

.product-card-image-container {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--off-white);
  position: relative;
  border-radius: 8px;
  border: 0.5px solid #dfe4ec;
  margin-bottom: 8px;
}

.product-card-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  transition: transform 0.3s;
}

.product-card:hover .product-card-image {
  transform: scale(1.05);
}

.product-card-info {
  padding: 10px 10px 4px;
}

.product-card-price-container {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}

.product-card-price {
  background-color: #329537;
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid #084121;
  box-shadow: 1.5px 1.5px 0 0 #084121;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  display: inline-block;
}

.product-card-mrp-price {
  font-size: 13px;
  color: #6b7280;
  text-decoration: line-through;
}

.product-card-discount-amount {
  font-size: 12px;
  font-weight: 600;
  color: #329537;
  margin-top: 2px;
}

.product-card-name {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-add-button {
  position: absolute;
  bottom: 4px;
  right: 4px;
  background-color: #ffffff;
  color: var(--brand-primary);
  padding: 4px 16px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  text-transform: uppercase;
  border: 1px solid var(--brand-primary);
  border-radius: 8px;
  box-shadow: 1.5px 1.5px 0 0 var(--brand-primary);
  min-height: 32px;
  font-family: inherit;
}

.product-card-add-button:hover {
  background: var(--brand-primary);
  color: white;
}

/* ÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚Â COLLECTIONS ÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚Â */

/* TYPE 1 ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â single-row slider (customer requirement: single row, no multi-row grid).
   Horizontal scroll with snap; ~5 cards visible on desktop, the rest peek + scroll. */
.product-collection.page-container {
  padding: 0 var(--page-px) 3rem;
}

.collection-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.heading-wrap .heading {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
}

.heading-wrap .heading-sub {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 2px;
}

.collection-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.swiper-nav {
  display: flex;
  gap: 8px;
}

.swiper-nav button {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--brand-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.swiper-nav button:hover {
  background: var(--brand-primary);
  color: #fff;
  border-color: var(--brand-primary);
}

.swiper-nav button:active {
  transform: scale(0.94);
}

.shop-all-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 15px;
  font-weight: 500;
  color: #000;
  white-space: nowrap;
}

.shop-all-link:hover {
  text-decoration: underline;
}

.single-row-swiper {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 4 * 16px) / 5);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.single-row-swiper::-webkit-scrollbar {
  display: none;
}

.single-row-swiper > .product-card {
  scroll-snap-align: start;
}

/* TYPE 2 ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â banner left + 3 products right */
.generic-collection.sh-generic-collection-card.page-container {
  padding: 0 var(--page-px) 3rem;
  display: flex;
  gap: 16px;
  align-items: stretch;
}

.banner-collection-container {
  width: 26%;
  min-width: 300px;
  flex: none;
  border-radius: 12px;
  overflow: hidden;
}

.banner-collection-container .banner {
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.banner-collection-container .banner-image-container {
  height: 100%;
  min-height: 320px;
  border-radius: 12px;
}

.product-collection-container {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.banner-button {
  background: white;
  color: var(--brand-primary-dark);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 5px;
  display: inline-block;
}

/* TYPE 3 ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â full-width landscape banner */
.banner-collection.page-container {
  padding: 0 var(--page-px) 3rem;
}

.banner-collection .banner {
  border-radius: 12px;
}

/* ÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚Â TRUST STRIP ÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚Â */
.trust-strip.page-container {
  padding-top: 0;
  padding-bottom: 0;
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 20px 24px;
  border-right: 1px solid var(--border);
}

.trust-item:last-child {
  border-right: none;
}

.trust-icon {
  flex-shrink: 0;
  color: var(--brand-primary);
  line-height: 0;
}

.trust-icon svg {
  width: 30px;
  height: 30px;
  display: block;
}

.trust-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.trust-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚Â FOOTER (mirrors chopdiwala.com) ÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚Â */
.luxury-footer {
  background: var(--navy);
  padding: 48px 0 0;
}

.footer-brand-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  line-height: 1.1;
}

.footer-brand-name span {
  color: var(--brand-accent);
}

.footer-brand-tag {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  margin-bottom: 14px;
}

.footer-columns {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.3fr;
  gap: 2.6rem;
  padding-bottom: 3rem;
}

.footer-description {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 14px;
}

.footer-contact p {
  font-size: 0.79rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.footer-heading {
  font-size: 0.8rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links a {
  font-size: 0.81rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--brand-accent);
}

.social-icons {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.social-icons a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  transition: all 0.2s;
}

.social-icons a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: rgba(255, 255, 255, 0.4);
}

.footer-separator {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.footer-bottom-wrapper {
  padding: 18px 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copyright {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.32);
}

.payment-badges {
  display: flex;
  gap: 6px;
}

.pay-badge {
  font-size: 0.65rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.55);
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* ÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚Â TABLET ÃƒÂ¢Ã¢â‚¬Â°Ã‚Â¤1100px ÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚Â */
@media (max-width: 1100px) {
  :root {
    --page-px: 2rem;
  }

  .cat-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .single-row-swiper {
    grid-auto-columns: calc((100% - 3 * 16px) / 4);
  }

  .footer-columns {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .hero-products {
    width: 300px;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .banner-collection-container {
    min-width: 240px;
  }

  .product-collection-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚Â MOBILE ÃƒÂ¢Ã¢â‚¬Â°Ã‚Â¤768px ÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚Â */
@media (max-width: 768px) {
  :root {
    --page-px: 1rem;
  }

  /* one message at a time ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â auto-rotating ticker, no cramming */
  .announcement-bar {
    padding: 7px 0;
  }

  .announcement-items {
    display: block;
    position: relative;
    width: 100%;
    height: 1.5em;
    font-size: 0.74rem;
    padding: 0 30px;
  }

  .ann-msg {
    position: absolute;
    left: 30px;
    right: 30px;
    justify-content: center;
    opacity: 0;
    margin-left: 0 !important;
    padding-left: 0 !important;
    border-left: none !important;
    animation: annTicker 12s infinite;
  }

  .ann-msg:nth-child(2) {
    animation-delay: 4s;
  }

  .ann-msg:nth-child(3) {
    animation-delay: 8s;
  }

  .ann-close {
    top: 50%;
    right: 0.6rem;
  }

  @keyframes annTicker {
    0% {
      opacity: 0;
      transform: translateY(45%);
    }

    3% {
      opacity: 1;
      transform: translateY(0);
    }

    30% {
      opacity: 1;
      transform: translateY(0);
    }

    33%,
    100% {
      opacity: 0;
      transform: translateY(-45%);
    }
  }

  .desktop-header-top {
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 10px 0;
  }

  .desktop-header-left {
    order: 1;
    flex: 0 0 auto;
  }

  .desktop-store-logo {
    height: 38px;
  }

  .desktop-header-right {
    order: 2;
    flex: 0 0 auto;
    gap: 1rem;
    margin-left: auto;
  }

  .desktop-delivery-location {
    display: none;
  }

  .desktop-header-center {
    order: 3;
    width: 100%;
    flex: none;
  }

  .search-bar {
    height: 40px;
  }

  .search-category-select {
    display: none;
  }

  .hero-inner {
    flex-direction: column-reverse;
    padding: 28px var(--page-px) 32px;
    gap: 22px;
  }

  .hero-products {
    order: 1;
    width: 100%;
  }

  .hero-prod-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .hero-prod-item {
    aspect-ratio: 3/4;
  }

  .hero-title {
    font-size: 1.85rem;
  }

  .hero-sub {
    font-size: 0.9rem;
  }

  .btn-primary {
    padding: 10px 22px;
    font-size: 0.88rem;
  }

  .pub-strip.page-container {
    padding: 1.5rem var(--page-px) 1.25rem;
  }

  .cust-cat-section.page-container {
    padding: 1.5rem var(--page-px) 2rem;
  }

  .cat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .cat-name {
    font-size: 0.72rem;
  }

  .cust-cat-section .section-sub {
    display: none;
  }

  /* avoid right-edge crowding on mobile */
  .section-title {
    font-size: 1.2rem;
  }

  /* Touch devices swipe the rows ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â hide the prev/next arrows (JS sets them inline, so !important) */
  .swiper-nav {
    display: none !important;
  }

  /* Single-row sliders ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â show ~2.2 cards so the row clearly scrolls */
  .product-collection.page-container {
    padding: 0 var(--page-px) 2rem;
  }

  .single-row-swiper {
    grid-auto-columns: 44%;
    gap: 10px;
  }

  /* Generic collection stacks */
  .generic-collection.sh-generic-collection-card.page-container {
    flex-direction: column;
    gap: 12px;
    padding: 0 var(--page-px) 2rem;
  }

  .banner-collection-container {
    width: 100%;
    min-width: 0;
    flex: none;
  }

  .banner-collection-container .banner {
    min-height: 0;
  }

  .banner-collection-container .banner-image-container {
    height: auto;
    min-height: 200px;
  }

  .product-collection-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .banner-collection.page-container {
    padding: 0 var(--page-px) 2rem;
  }

  .trust-strip-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item {
    border-right: none;
    padding: 16px 12px;
    border-bottom: 1px solid var(--border);
  }

  .trust-item:nth-child(odd) {
    border-right: 1px solid var(--border);
  }

  .trust-item:nth-child(3),
  .trust-item:nth-child(4) {
    border-bottom: none;
  }

  .trust-icon svg {
    width: 26px;
    height: 26px;
  }

  .luxury-footer {
    padding: 36px 0 0;
  }

  /* brand block full-width; the three link menus sit 2-up to cut footer height */
  .footer-columns {
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem 1.5rem;
    padding-bottom: 2rem;
  }

  .footer-columns > div {
    min-width: 0;
  }

  .footer-columns > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-heading {
    margin-bottom: 12px;
  }

  .footer-links {
    gap: 11px;
  }

  .footer-links a {
    font-size: 0.85rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .payment-badges {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.notice {
  padding: 0px !important;
}

.heading-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 10px;
}

.heading-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 3px;
  background: var(--brand-accent);
  border-radius: 2px;
}
.header-categories {
  display: none;
}
